The Power of Homographies

Why do homogeneous coordinates make sense?

The point on the image plane at is just the intersection of the ray with the image plane; that means any point on the ray projects onto the image plane at that point.

The ray is just the scaled intersection point,

image-20210127234114532

How we determine how a particular point in one projective plane maps onto another plane?

We cast a ray through each pixel in the first projective plane and draw where that ray intersects the other projective plane.

image-20210127234314770

Homgraphies allow us to map projected points from one plane to another.

Now we can think about this as a 2D image warp (or just a transformation) from one plane to another. This basic principle is how we create image mosaics (panoramas).

Creating Panoramas (mosaic)

Basic Procedure

  • Take a sequence of images from the same position, rotate the camera about its optical center
  • Compute transformation between second image and first
  • Transform the second image to overlap with the first
  • Blend the two together to create a mosaic
  • (If there are more images, repeat)

Image Reprojection: Homography

A projective transform is a mapping between any two PPs with the same center of projection, called Homography. also can be written as :

Solving for homographies

  1. Inhomogeneous Solution

Set this up as a system of linear equations with a vector of 8 unknowns: . Given at least 4 corresponding points between the images, we can solve for using the least squares method:

  1. Single Value Decomposition (SVD), better way

Just like we did for the extrinsics, multiply through, and divide out by w. Gives two homogeneous equations per point. Solve using SVD just like before. This is the cool way.

Homographies and 3D Planes

In this section we'll demonstrate how the 8 degrees of freedom in a homography allow us to create mappings between planes.

Recall the calibration matrix and its effect on world-space coordinates: Suppose all of the points in the world were lying on a plane. A plane is represented by a normal vector and a point on the plane, represented as . Rearrange to solve for , and then plug into our transformation: The effect of the 3rd column can be spread to other columns, this gives us: Now this is a 3x3 homogoraphy!

Image Rectification

We can transform between arbitrary planes using homographies, we can actually apply that to images to see what they would look like from a different perspective!

This is called image rectification.

image-20210128022604943

Image Warping

Given a coordinate transform and a source image , how do we compute a transformed image ?

image-20210128022918674

Forward Warping

Send each pixel to its corresponding location

The problem is that the a particular may not correspond to an individual pixel! This is know as splatting, and does not result in very clean transformed images.

Inverse Warping

Get each pixel from its corresponding location in the first image.

Bilinear Interpolation

Given a location, we can find its distance from a discrete pixel at (i, j): . Then we calculate the final intensity in the destination image at :

image-20210128023420577

results matching ""

    No results matching ""